home *** CD-ROM | disk | FTP | other *** search
/ PC Direct 1998 August / PC Direct August 1998.iso / S / powerj / Product / hpp.z / dtjssock.hpp < prev    next >
Encoding:
C/C++ Source or Header  |  1997-11-25  |  613 b   |  23 lines

  1. // Design Time Java ServerSocket implementation. (HPP)
  2.  
  3. #ifndef _DTJSSOCK_HPP
  4. #define _DTJSSOCK_HPP
  5.  
  6. #include "dtjobjct.hpp"
  7.                       
  8. class METAEXPORTCLASSDEF DTJServerSocket : public DTJObject
  9. {
  10.     public:
  11.         DTJServerSocket( const MetaObject * pMetaObj );
  12.         virtual ~DTJServerSocket();
  13.         
  14.         virtual void GenerateCode( MMCodeGeneration mmCodeGen,
  15.                    ostream& src,
  16.                    MMCodeGenerationParms& pGenParms );
  17. };
  18.  
  19. // needed for mdreader
  20. typedef DTJServerSocket DTpowersoft__dot__powerj__dot__net__dot__ServerSocket__dot__102;
  21.  
  22. #endif // _DTJSSOCK_HPP
  23.